home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / Apps / ArchiveUtils / Freeze / InfoMgr.m < prev    next >
Encoding:
Text File  |  1992-12-20  |  992 b   |  56 lines

  1. /*
  2.  *    Filename:    InfoMgr.m 
  3.  *    Created :    Sun Oct 20 20:38:59 1991 
  4.  *    Author  :    Vince DeMarco
  5.  *        <vince@whatnxt.cuc.ab.ca>
  6.  */
  7.  
  8.  
  9. /* Generated by Interface Builder */
  10.  
  11. #import "InfoMgr.h"
  12. #import <appkit/Application.h>
  13. #import <appkit/Window.h>
  14.  
  15. @implementation InfoMgr
  16.  
  17. - info:sender
  18. {
  19.     if (!infoPanel){
  20.     [NXApp loadNibSection:"Info.nib" owner:self withNames:NO fromZone:[self zone]];
  21.     }
  22.     [infoPanel makeKeyAndOrderFront:sender];
  23.     return self;
  24. }
  25.  
  26. - help:sender
  27. {
  28.     if (!helpPanel){
  29.     [NXApp loadNibSection:"Info.nib" owner:self withNames:NO fromZone:[self zone]];
  30.     }
  31.     [helpPanel makeKeyAndOrderFront:sender];
  32.     return self;
  33. }
  34.  
  35. - copying:sender
  36. {
  37.     if (!copyingPanel){
  38.     [NXApp loadNibSection:"Info.nib" owner:self withNames:NO fromZone:[self zone]];
  39.     }
  40.     [copyingPanel makeKeyAndOrderFront:sender];
  41.     return self;
  42. }
  43.  
  44. /* InfoPanel Delegation Methods */
  45. - windowWillClose:sender
  46. {
  47.     return self;
  48. }
  49.  
  50. - windowDidBecomeKey:sender
  51. {
  52.     return self;
  53. }
  54.  
  55. @end
  56.